home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 326-350 / disk_327 / msh / notes / manxnotes next >
Text File  |  1992-05-06  |  2KB  |  73 lines

  1. Article 7087 of comp.sys.amiga.tech:
  2. Path: estinc!mcdphx!asuvax!cs.utexas.edu!usc!pollux.usc.edu!papa
  3. From: papa@pollux.usc.edu (Marco Papa)
  4. Newsgroups: comp.sys.amiga.tech
  5. Subject: Fixes to compile Olaf's MSH
  6. Message-ID: <23056@usc.edu>
  7. Date: 24 Feb 90 04:43:22 GMT
  8. Sender: news@usc.edu
  9. Organization: Felsina Software, Los Angeles, CA
  10. Lines: 59
  11.  
  12. For you guys wishing to play with MSH sources, here are the changes needed
  13. to compile and link the source with MANX 3.6a (Olaf has his own set of
  14. precompiled includes):
  15.  
  16. 1. Change the makefile as follows:
  17.  
  18. DB =     -DNOTDEF
  19. WACK =
  20.  
  21. 2. Change dos.h's included files as follows:
  22.  
  23. #ifdef NOTDEF
  24. #include "exec/types.h"
  25. #include "exec/memory.h"
  26. #include "exec/interrupts.h"
  27. #include "exec/nodes.h"
  28. #include "libraries/dos.h"
  29. #include "libraries/dosextens.h"
  30. #include "libraries/filehandler.h"
  31. #include "devices/trackdisk.h"
  32. #include "devices/timer.h"
  33. #endif NOTDEF
  34.  
  35. 3. For the following files: hanmain.c, hansec.c, hanlock.c, hanfile.c and
  36.   date.c, switch the order of the two includes as follows:
  37.  
  38. #include "dos.h"
  39. #include "han.h"
  40.  
  41. 4. Add to dev.h a set of includes as follows:
  42.  
  43. #ifdef NOTDEF
  44. #include "exec/devices.h"
  45. #include "exec/ports.h"
  46. #include "exec/semaphores.h"
  47. #include "exec/interrupts.h"
  48. #include "exec/io.h"
  49. #include "exec/errors.h"
  50. #include "exec/memory.h"
  51. #include "devices/trackdisk.h"
  52. #include "resources/disk.h"
  53. #include "resources/cia.h"
  54. #include "hardware/custom.h"
  55. #include "hardware/cia.h"
  56. #include "hardware/adkbits.h"
  57. #include "hardware/dmabits.h"
  58. #include "hardware/intbits.h"
  59. #endif
  60.  
  61. BTW, I've been trying to send this to Olaf, but the given address bounced.
  62. If anybody has a proper path, please forward this to Olaf for his next
  63. release.
  64.  
  65. Enjoy, and happy experimenting.
  66.  
  67. -- Marco
  68. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  69. "Xerox sues somebody for copying?" -- David Letterman
  70. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  71.  
  72.  
  73.